home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 5 / BBS in a Box -Volume V (BBS in a Box) (April 1992).iso / Files / Prog / M / LSC213.cpt / TimeMgr.h < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-26  |  404 b   |  27 lines  |  [TEXT/KAHL]

  1.  
  2. /*
  3.  *  TimeMgr.h
  4.  *
  5.  *  Copyright (c) 1986, 1987 THINK Technologies, Inc.
  6.  *  These interfaces are based on information copyrighted
  7.  *  by Apple Computer, Inc., 1985, 1986, 1987.
  8.  *
  9.  */
  10.  
  11. #ifndef    _TimeMgr_
  12. #define _TimeMgr_
  13.  
  14. #ifndef    _MacTypes_
  15. #include "MacTypes.h"
  16. #endif
  17.  
  18.  
  19. typedef struct TMTask {
  20.     struct QElem        *qLink;
  21.     int                    qType;
  22.     ProcPtr                tmAddr;
  23.     long                tmCount;
  24. } TMTask;
  25.  
  26.  
  27. #endif _TimeMgr_